home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
sightmap
/
map.frm
< prev
next >
Wrap
Text File
|
1999-01-15
|
3KB
|
106 lines
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmMap
BorderStyle = 1 'Fixed Single
Caption = "Map"
ClientHeight = 6285
ClientLeft = 45
ClientTop = 330
ClientWidth = 9915
Icon = "Map.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 6285
ScaleWidth = 9915
Begin VB.CommandButton cmdExcel
Caption = "Print"
Height = 375
Left = 4320
TabIndex = 1
Top = 5760
Width = 735
End
Begin MSComctlLib.TreeView tvMap
Height = 5415
Left = 360
TabIndex = 0
Top = 240
Width = 9135
_ExtentX = 16113
_ExtentY = 9551
_Version = 393217
Style = 7
Appearance = 1
End
Begin VB.Label lblRoot
Height = 255
Left = 1080
TabIndex = 3
Top = 5880
Width = 1815
End
Begin VB.Label Label1
Caption = "Root:"
Height = 255
Left = 360
TabIndex = 2
Top = 5880
Width = 615
End
End
Attribute VB_Name = "frmMap"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'Map.frm
'--------------------------------------------------------------------------
'<Purpose>
'
'
'
'<Revision>
' $Revision: $
'
'<Mod Log>
'
' $Log: $
'
'--------------------------------------------------------------------------
Private hSite As Form
Public Property Get SiteHandle() As Form
Set SiteHandle = hSite
End Property
Public Property Let SiteHandle(ByVal hForm As Form)
Set hSite = hForm
End Property
'--------------------------------------------------------------------------
'<Purpose>
'
'
'<Syntax>
'
'
'<Assumptions>
'
'
'<Returns>
'
'
'<Author>
' HBW
'
'--------------------------------------------------------------------------
Private Sub cmdExcel_Click()
Call MakeExcelFile(tvMap)
End Sub